Coding TestProgrammersLevel 1행렬의 덧셈On this page행렬의 덧셈 Solution function solution(arr1, arr2) { return arr1.map((list, xIdx) => list.map((value, yIdx) => value + arr2[xIdx][yIdx]) );} Review . References Programmers - 행렬의 덧셈